-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates and Improvements to REFLO System Costing #136
Updates and Improvements to REFLO System Costing #136
Conversation
…kar/watertap-seto into pr/MuktaHardikar/136-1
We should merge this asap so that way all the tests are updated for the subsequent PRs |
@@ -92,6 +92,7 @@ def build_photovoltaic_cost_param_block(blk): | |||
) | |||
def cost_pv(blk): | |||
|
|||
blk.costing_package.has_electricity_generation = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a comment on PV costs: it would be totally fair to cost PV out on a $/kW_dc basis. I remember using numbers on the order of $1000 - $2000/kWdc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is how we do it already?
would resolve #28 |
mutable=True, | ||
initialize=0.07, | ||
doc="Electricity cost to buy", | ||
units=pyo.units.USD_2018 / pyo.units.kWh, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
units=pyo.units.USD_2018 / pyo.units.kWh, | |
units=self.base_currency / pyo.units.kWh, |
mutable=True, | ||
initialize=0.05, | ||
doc="Electricity cost to sell", | ||
units=pyo.units.USD_2018 / pyo.units.kWh, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
units=pyo.units.USD_2018 / pyo.units.kWh, | |
units=self.base_currency / pyo.units.kWh, |
mutable=True, | ||
initialize=0.07, | ||
doc="Heat cost to buy", | ||
units=pyo.units.USD_2018 / pyo.units.kWh, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
units=pyo.units.USD_2018 / pyo.units.kWh, | |
units=self.base_currency / pyo.units.kWh, |
mutable=True, | ||
initialize=0.05, | ||
doc="Heat cost to sell", | ||
units=pyo.units.USD_2018 / pyo.units.kWh, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
units=pyo.units.USD_2018 / pyo.units.kWh, | |
units=self.base_currency / pyo.units.kWh, |
This PR includes changes to the REFLO costing method to track energy (electricity/heat) purchased, sold and produced/used by the treatment and energy blocks.
Future PR: